With modules you can share methods between classes: Modules can be included into classes, and this makes their methods available on the class, just as if we'd copied and paste these methods over to the class definition
This is useful if we have methods that we want to reuse in certain classes, but also want to keep them in a central place, so we do not have to repeat them everywhere
NOTES: Notice the keyword include, that is to make everything under a module available to the current context